home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 2 / Apprentice-Release2.iso / Source Code / C / Utilities / ENV Server / server src / logging.h < prev   
Encoding:
C/C++ Source or Header  |  1993-05-31  |  386 b   |  25 lines  |  [TEXT/ALFA]

  1. /*******************
  2. ** logging.h
  3. **
  4. ** header file for msg logging module.
  5. ********************/
  6.  
  7. #ifndef LOGGING_H
  8. #define LOGGING_H
  9.  
  10. #if LOGGING
  11. #define LOGENTRY(x)        LogEntry(x)
  12. #else
  13. #define LOGENTRY(x)
  14. #endif
  15.  
  16. void LogInit(const char *name);
  17. void LogClose(void);
  18. void LogStop(void);
  19. void LogStart(void);
  20. void LogEntry( const char *s);
  21. void LogError(OSErr, const char *s);
  22.  
  23. #endif
  24.  
  25.